home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / -seriously_amiga- / shareware / programming / blitz / hsb_wbs_inc / bh / wbstart.bc next >
Text File  |  1997-12-01  |  932b  |  31 lines

  1. REM wbstart.bc, shared library constants file
  2. REM wbstart © 1991-96 Stefan Becker
  3. REM HiSoftBasic-Anpassung von Steffen Leistner
  4.  
  5. REM $UNDERLINES
  6.  
  7. ' Tags for WBStartTagList()
  8.  
  9. ' Name of the program to start. It is relative to
  10. ' WBStart_DirectoryName or WBStart_DirLock.
  11. CONST WBStart_Name& = &H80000001&                'SADD 
  12.  
  13. ' Name of a directory. Mutually exclusive to WBStart_DirectoryLock
  14. CONST WBStart_DirectoryName& = &H80000002&        'SADD
  15.  
  16. ' Lock of a directory. Mutually exclusive to WBStart_DirectoryName
  17. CONST WBStart_DirectoryLock& = &H80000003&        'BPTR
  18.  
  19. ' Stack size for the new process
  20. CONST WBStart_Stack& =    &H80000004&                'ULONG
  21.  
  22. ' Priority for the new process
  23. CONST WBStart_Priority& = &H80000005&            'LONG
  24.  
  25. ' Number of arguments in WBStart_ArgumentList
  26. CONST WBStart_ArgumentCount& = &H80000006&        'ULONG
  27.  
  28. ' Array of arguments. WBStart_ArgumentCount MUST be specified also!
  29. CONST WBStart_ArgumentList& = &H80000007&        'STRUCT WBArg
  30.  
  31.